if none in column remove row

55

if none in column remove row -

import pandas as pd
df = df[pd.notnull(df['Gender'])]

Comments

Submit
0 Comments